Quickbook API icon

Quickbook API

(0 reviews)

Retriving booking products by account number and products type

GET '/products/accountNumber/productsType'

Description

Get particular product by account number and productsType.

Authorization

The Authorization header carried the API access token in the format AL client_id:client_secret. Please see Security page for more information.

Content type

application/json

Uri Parameters

ParametersDescriptionRequired?
accountNumberaccount number associated with a specific product servicetrue
productsTypethe products retrieve by is either passenger or couriertrue

Response

{
    "services": [
        {
            "name": "Select",
            "code": "standard_car",
            "description": "Everyday choice and comfort - professional driver and medium car for up to 4 people and 2 large bags (TBS Base)",
            "type": "PASSENGER",
            "passengers": 2,
            "luggage": 4,
            "bicycle": false
        }
             ]
}
ParametersDescription
nameBooking product name
codeCode associated with a specific product
descriptionBooking product description
imageGraphics representation of the product
typeBooking product type
passengersNumber of passengers allowed for this product
luggageNumber of luggage allowed for this product

Reviews